Código de C sharp - ejemplo de tellcell usando linq

0.9

Publicado el 27 de Junio del 2018gráfica de visualizaciones de la versión: 0.9
1.694 visualizaciones desde el 27 de Junio del 2018
estrellaestrellaestrellaestrellaestrella
estrellaestrellaestrellaestrella
estrellaestrellaestrella
estrellaestrella
estrella

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
//padre
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace BibliotecaTeleCell
{
    /// <summary>
    /// Represneta la información de un Contrato Base de Telefonía Móvil
    /// </summary>
    public class ContratoBase
    {
        #region Campos privados
        private int _numero;
        private DateTime _fechaContrato;
        private string _nombreTitular;
        #endregion
 
 
        #region Propiedades
        /// <summary>
        /// Retorna o asigna el número de la línea
        /// </summary>
        public int Numero
        {
            get { return _numero; }
            set
            {
                /* Extrae primer caracter */
                char digito = value.ToString()[0];
 
                /* Valida que este dentro de los carcateres esperados */
                switch (digito)
                {
                    case '6':
                    case '7':
                    case '8':
                    case '9':
                        _numero = value;
                        break;
                    default:
                        throw new ArgumentException("Número debe iniciar con 6, 7, 8 O 9");
                }
            }
        }
 
        /// <summary>
        /// Retorna o asigna la fecha del contrato
        /// </summary>
        public DateTime FechaContrato
        {
            get { return _fechaContrato; }
            set {
                if (value > DateTime.Now)
                {
                    throw new ArgumentException("Fecha de Contrato no puede ser mayor a la fecha actual");
                }
                else
                {
                    _fechaContrato = value;
                }
            }
        }
 
        /// <summary>
        /// Retorna o asigna el nombre del cliente titular
        /// </summary>
        public string NombreTitular
        {
            get { return _nombreTitular; }
            set {
                if (string.IsNullOrEmpty(value))
                {
                    throw new ArgumentException("Nombre no puede estar vacío");
                }
                else
                {
                    _nombreTitular = value;
                }
            }
        }
 
        /// <summary>
        /// Retorna o asigna indicador si cuenta con equipo propio
        /// </summary>
        public bool EquipoPropio { get; set; }
 
        /// <summary>
        /// Retorna o asigna el tipo de contrato.
        /// </summary>
        public TipoContrato Tipo { get; set; }
        #endregion
 
        /// <summary>
        /// Constructor por defecto
        /// </summary>
        public ContratoBase()
        {
            this.Init();
        }
 
        /// <summary>
        /// Inicializa campos y propiedades
        /// </summary>
        private void Init()
        {
            _numero = 0;
            _fechaContrato = DateTime.Now;
            _nombreTitular = string.Empty;
            EquipoPropio = false;
            Tipo = TipoContrato.Postpago;
        }
 
        /// <summary>
        /// Calcula el precio del contrato base
        /// </summary>
        /// <returns></returns>
        public int PrecioContrato()
        {
            int precio = 2990; /* Precio base de habilitación */
 
            /* Agrega un recargo base si no tiene equipo propio */
            if (!EquipoPropio)
            {
                switch (Tipo)
                {
                    case TipoContrato.Postpago:
                        precio += 990;
                        break;
                    case TipoContrato.Prepago:
                        precio += 1990;
                        break;
                }
            }
            return precio;
        }
 
    }
}
//hija1
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace BibliotecaTeleCell
{
    public class PostPago : ContratoBase
    {
        /// <summary>
        /// Retorna o asigna el tipo de contrato postpago
        /// </summary>
        public ContratoPostpago Contrato { get; set; }
 
        /// <summary>
        /// Retorna el precio en base al contrato
        /// </summary>
        public int Precio
        {
            get
            {
                int precio = 0;
                switch (Contrato)
                {
                    case ContratoPostpago.MultimediaSocial:
                        precio = 19990;
                        break;
                    case ContratoPostpago.MultimediaFull:
                        precio = 25990;
                        break;
                    case ContratoPostpago.MultimediaLTE:
                        precio = 29990;
                        break;
                }
 
                return precio;
            }
        }
 
        /// <summary>
        /// Retorna los MB de navegación en base al contrato
        /// </summary>
        public int MBInternet
        {
            get
            {
                int mb = 0;
                switch (Contrato)
                {
                    case ContratoPostpago.MultimediaSocial:
                        mb = 1200;
                        break;
                    case ContratoPostpago.MultimediaFull:
                        mb = 1800;
                        break;
                    case ContratoPostpago.MultimediaLTE:
                        mb = 2400;
                        break;
                }
 
                return mb;
            }
        }
 
        /// <summary>
        /// Retorna los minutos de conversación en base al contrato
        /// </summary>
        public int Minutos
        {
            get
            {
                int min = 0;
                switch (Contrato)
                {
                    case ContratoPostpago.MultimediaSocial:
                        min = 150;
                        break;
                    case ContratoPostpago.MultimediaFull:
                        min = 250;
                        break;
                    case ContratoPostpago.MultimediaLTE:
                        min = 500;
                        break;
                }
 
                return min;
            }
        }
 
        /// <summary>
        /// Retorna la cantiadad de SMS en base al contrato
        /// </summary>
        public int SMS
        {
            get
            {
                int sms = 0;
                switch (Contrato)
                {
                    case ContratoPostpago.MultimediaSocial:
                        sms = 100;
                        break;
                    case ContratoPostpago.MultimediaFull:
                    case ContratoPostpago.MultimediaLTE:
                        sms = 500;
                        break;
                }
 
                return sms;
            }
        }
 
        /// <summary>
        /// Retorna el valor por minuto de voz adicional en base al contrato
        /// </summary>
        public int MinutoAdicional
        {
            get
            {
                int min = 0;
                switch (Contrato)
                {
                    case ContratoPostpago.MultimediaSocial:
                        min = 100;
                        break;
                    case ContratoPostpago.MultimediaFull:
                        min = 70;
                        break;
                    case ContratoPostpago.MultimediaLTE:
                        min = 60;
                        break;
                }
 
                return min;
            }
        }
 
        /// <summary>
        /// Retorna el valor por SMS adicional en base al contrato
        /// </summary>
        public int SMSAdicional
        {
            get
            {
                return 50;
            }
        }
 
        /// <summary>
        /// Retorna el valor por MB de navegación adicional en base al contrato
        /// </summary>
        public int MBAdicional
        {
            get
            {
                return 60;
            }
        }
 
        /// <summary>
        /// Constructor por defecto
        /// </summary>
        public PostPago()
        {
            this.Init();
        }
 
        /// <summary>
        /// Inicializa campos y propiedades
        /// </summary>
        private void Init()
        {
            Contrato = ContratoPostpago.MultimediaFull;
        }
 
        /// <summary>
        /// Calcula el precio del contrato postpago
        /// </summary>
        /// <returns></returns>
        public new int PrecioContrato()
        {
            int precio = base.PrecioContrato(); /* Precio base de habilitación */
 
            precio += Precio; /* Precio por contrato postpago */
 
            return precio;
        }
 
    }
}
//Hija2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace BibliotecaTeleCell
{
    public class PrePago: ContratoBase
    {
        /// <summary>
        /// Retorna o asigna el tipo de contrato prepago
        /// </summary>
        public ContratoPrepago Contrato { get; set; }
 
        /// <summary>
        /// Retorna el valor por minuto de voz en base al contrato
        /// </summary>
        public int ValorMinuto
        {
            get
            {
                int min = 0;
                switch (Contrato)
                {
                    case ContratoPrepago.MovilSocial:
                        min = 70;
                        break;
                    case ContratoPrepago.MovilInternet:
                        min = 60;
                        break;
                }
 
                return min;
            }
        }
 
        /// <summary>
        /// Retorna el valor por SMS adicional en base al contrato
        /// </summary>
        public int ValorSMS
        {
            get
            {
                int sms = 0;
                switch (Contrato)
                {
                    case ContratoPrepago.MovilSocial:
                        sms = 60;
                        break;
                    case ContratoPrepago.MovilInternet:
                        sms = 50;
                        break;
                }
 
                return sms;
            }
        }
 
        /// <summary>
        /// Retorna el valor por MB de navegación adicional en base al contrato
        /// </summary>
        public int ValorMB
        {
            get
            {
                return 60;
            }
        }
 
        /// <summary>
        /// constructor por defecto
        /// </summary>
        public PrePago()
        {
            this.Init();
        }
 
        /// <summary>
        /// Inicializa campos y propiedades
        /// </summary>
        private void Init()
        {
            Contrato = ContratoPrepago.MovilSocial;
        }
 
        /// <summary>
        /// Calcula el precio del contrato postpago
        /// </summary>
        /// <returns></returns>
        public new int PrecioContrato()
        {
            int precio = base.PrecioContrato(); /* Precio base de habilitación */
 
            return precio;
        }
    }
}
//enum
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace BibliotecaTeleCell
{
    /// <summary>
    /// Representa los Tipos de Contrato Móvil
    /// </summary>
    public enum TipoContrato
    {
        Postpago = 0, Prepago = 1
    }
 
    /// <summary>
    /// Representa los tipos de contrato postpago
    /// </summary>
    public enum ContratoPostpago
    {
        MultimediaSocial = 0, MultimediaFull = 1, MultimediaLTE = 2
    }
 
    /// <summary>
    /// Representa los tipos de contrato prepago
    /// </summary>
    public enum ContratoPrepago
    {
        MovilSocial = 0, MovilInternet = 1
    }
}
//linq
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace BibliotecaTeleCell
{
    /// <summary>
    /// Representa la colección de contratos
    /// </summary>
    public class ContratoCollection: List<ContratoBase>
    {
        public int ContarPorTipoContrato(TipoContrato tipo)
        {
            return this.Count(c => c.Tipo == tipo);
        }
 
        public List<int> ObtenerNumerosEquipoPropio()
        {
            return this.Where(c => c.EquipoPropio).Select(c => c.Numero).ToList<int>();
        }
 
        public List<string> ObtenerNombresPorFecha(DateTime inicio, DateTime termino)
        {
            return this.Where(c => c.FechaContrato >= inicio && c.FechaContrato <= termino).Select(c => c.NombreTitular).ToList<string>();
        }
 
        public double PrecioPromedioPostPago()
        {
            return this.Where(c => c.Tipo == TipoContrato.Postpago).Average(c => ((PostPago)c).PrecioContrato());
        }
 
        public List<DateTime> FechasPostPagoMenorValor()
        {
            int menor = this.Where(c => (c is PostPago)).Min(c => ((PostPago)c).PrecioContrato());
 
            return this.Where(c => (c is PostPago) && ((PostPago)c).PrecioContrato() == menor).Select(c => c.FechaContrato).ToList<DateTime>();
        }
    }
}
//wpf
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
 
/* Add's */
using BibliotecaTeleCell;

namespace TeleCellWPF
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        private ContratoCollection contratos = new ContratoCollection();

        #region Datos de Ejemplo
        private string[] nombres = {  "SOFIA"       ,"VALENTINA"   ,"ISIDORA"     ,"ANTONIA"    ,"EMILIA"
                                     ,"CATALINA"    ,"FERNANDA"    ,"CONSTANZA"   ,"JAVIERA"    ,"MARIA"       
                                     ,"FRANCISCA"   ,"AGUSTINA"    ,"AMANDA"      ,"CAMILA"     ,"MONSERRAT"  
                                     ,"BENJAMIN"    ,"VICENTE"     ,"MARTIN"      ,"MATIAS"     ,"JOAQUIN"    
                                     ,"AGUSTIN"     ,"CRISTOBAL"   ,"MAXIMILIANO" ,"SEBASTIAN"  ,"TOMAS"       
                                     ,"DIEGO"       ,"JOSE"        ,"NICOLAS"     ,"FELIPE"     ,"ALONSO"};

        private string[] apellidos = {  "SOTO"      , "CONTRERAS"   , "SILVA"   , "SEPÚLVEDA"   , "MARTÍNEZ"
                                       ,"MORALES"   , "RODRÍGUEZ"   , "LÓPEZ"   , "FUENTES"     , "ARAYA"
                                       ,"TORRES"    , "HERNÁNDEZ"   , "FLORES"  , "ESPINOZA"    , "VALENZUELA"
                                       ,"CASTILLO"  , "RAMÍREZ"     , "REYES"   , "GUTIÉRREZ"   , "CASTRO"
                                       ,"VARGAS"    , "ÁLVAREZ"     , "VÁSQUEZ" , "FERNÁNDEZ"   , "TAPIA"
                                       ,"SÁNCHEZ"   , "GÓMEZ"       , "HERRERA" , "CARRASCO"    , "CORTÉS"
                                       ,"NÚÑEZ"     , "JARA"        , "VERGARA" , "RIVERA"      , "FIGUEROA"
                                       ,"RIQUELME"  , "GARCÍA"      , "BRAVO"   , "MIRANDA"     , "VERA"
                                       ,"MOLINA"    , "VEGA"        , "CAMPOS"  , "OLIVARES"    , "ZÚÑIGA"
                                       ,"ORELLANA"  , "GALLARDO"    , "ALARCÓN" , "ORTIZ"       , "GARRIDO"
                                       ,"SALAZAR"   , "HENRÍQUEZ"   , "AGUILERA", "SAAVEDRA"    , "PIZARRO"
                                       ,"GUZMÁN"    ,"NAVARRO"      , "ARAVENA" , "PARRA"       , "ROMERO"
                                       ,"CÁCERES"   , "GODOY"       , "PEÑA"    , "LEIVA"       , "ESCOBAR" };
        #endregion

        public MainWindow()
        {
            InitializeComponent();

            CargaContratos();
        }

        /// <summary>
        /// Carga Contratos d ejemplo para la estadistica
        /// </summary>
        private void CargaContratos()
        {
            Random rnd = new Random();

            for (int i = 0; i < 15; i++)
            {
                ContratoBase contrato = null;
                TipoContrato tipo = (TipoContrato)(rnd.Next(0, 50) % 2);

                /* Asigna Plan */
                switch (tipo)
                {
                    case TipoContrato.Postpago:
                        PostPago post = new PostPago();
                        post.Contrato = (ContratoPostpago)rnd.Next(0, 2);
                        contrato = post;
                        break;
                    case TipoContrato.Prepago:
                        PrePago pre = new PrePago();
                        pre.Contrato = (ContratoPrepago)rnd.Next(0, 1);
                        contrato = pre;
                        break;
                }
                contrato.Tipo = tipo;

                contrato.Numero = (rnd.Next(6, 9) * 10000000) + (rnd.Next(0, 10000000));

                contrato.FechaContrato = DateTime.Now.AddDays(rnd.Next(1, 15) * (-1));
                contrato.NombreTitular = string.Format("{0} {1}", nombres[rnd.Next(0, 29)], apellidos[rnd.Next(0, 64)]);
                contrato.EquipoPropio = (rnd.Next(0, 50) % 2 == 0);

                contratos.Add(contrato);

            }

            dgRegistro.ItemsSource = contratos;

        }

        private void btnContarTipo_Click(object sender, RoutedEventArgs e)
        {
            txtPostPago.Text = contratos.ContarPorTipoContrato(TipoContrato.Postpago).ToString();
            txtPrePago.Text = contratos.ContarPorTipoContrato(TipoContrato.Prepago).ToString();
        }

        private void btnEquipoPropio_Click(object sender, RoutedEventArgs e)
        {
            lstEquipoPropio.ItemsSource = contratos.ObtenerNumerosEquipoPropio();
        }

        private void btnNombres_Click(object sender, RoutedEventArgs e)
        {

            if ((dpInicio.SelectedDate != null) && (dpTermino.SelectedDate != null))
            {
                if (dpInicio.SelectedDate <= dpTermino.SelectedDate)
                {
                    DateTime aux = (DateTime)dpInicio.SelectedDate;
                    DateTime inicio = new DateTime(aux.Year, aux.Month, aux.Day, 0, 0, 0);
                    aux = (DateTime)dpTermino.SelectedDate;
                    DateTime termino = new DateTime(aux.Year, aux.Month, aux.Day, 23, 59, 59);


                    lstNombres.ItemsSource = contratos.ObtenerNombresPorFecha(inicio, termino);

                }
                else
                {
                    MessageBox.Show("Fecha de inicio debes ser menor o igual a fecha de termino");
                }

            }
            else
            {
                MessageBox.Show("Debe seleccionar las fechas del rango");
            }


        }

        private void btnMenorValor_Click(object sender, RoutedEventArgs e)
        {
            lstMenorValor.ItemsSource = contratos.FechasPostPagoMenorValor();
        }

    }
}



Comentarios sobre la versión: 0.9 (0)


No hay comentarios
 

Comentar la versión: 0.9

Nombre
Correo (no se visualiza en la web)
Valoración
Comentarios...
CerrarCerrar
CerrarCerrar
Cerrar

Tienes que ser un usuario registrado para poder insertar imágenes, archivos y/o videos.

Puedes registrarte o validarte desde aquí.

Codigo
Negrita
Subrayado
Tachado
Cursiva
Insertar enlace
Imagen externa
Emoticon
Tabular
Centrar
Titulo
Linea
Disminuir
Aumentar
Vista preliminar
sonreir
dientes
lengua
guiño
enfadado
confundido
llorar
avergonzado
sorprendido
triste
sol
estrella
jarra
camara
taza de cafe
email
beso
bombilla
amor
mal
bien
Es necesario revisar y aceptar las políticas de privacidad

http://lwp-l.com/s4678