コード例 #1
0
 public void Update(DateTime datetime, string obs, ETypeScheduling type, EExpertise typeExpertise)
 {
     Datetime      = datetime;
     Obs           = obs;
     Type          = type;
     TypeExpertise = typeExpertise;
 }
コード例 #2
0
        public static string FormatExpertise(this RazorPage page, EExpertise document)
        {
            switch (document)
            {
            case EExpertise.GeneralPractitioner:
            {
                return("Clínico Geral");
            }

            case EExpertise.Orthodontics:
            {
                return("Ortodondia");
            }

            case EExpertise.Implantology:
            {
                return("Implantodontia");
            }

            case EExpertise.Endodontics:
            {
                return("Endodontia");
            }
            }

            return("");
        }
コード例 #3
0
 public Scheduling(DateTime datetime, Guid dentistId, string obs, Guid patientId, ETypeScheduling type, EExpertise typeExpertise)
 {
     Datetime      = datetime;
     DentistId     = dentistId;
     Obs           = obs;
     PatientId     = patientId;
     Type          = type;
     TypeExpertise = typeExpertise;
 }
コード例 #4
0
ファイル: Dentist.cs プロジェクト: luischagas/SisOdonto
 public void Update(DateTime birthDate, string cep, string city, string complement, string cpf, string district, string email, string name, string number, string state, string street, string cro, EExpertise expertise)
 {
     BirthDate  = birthDate;
     Cep        = cep;
     City       = city;
     Complement = complement;
     Cpf        = cpf;
     District   = district;
     Email      = email;
     Name       = name;
     Number     = number;
     State      = state;
     Street     = street;
     Cro        = cro;
     Expertise  = expertise;
 }
コード例 #5
0
ファイル: Dentist.cs プロジェクト: luischagas/SisOdonto
 public Dentist(Guid id, DateTime birthDate, string cep, string city, string complement, string cpf, string district, string email, string name, string number, string state, string street, string cro, EExpertise expertise)
 {
     Id         = id;
     BirthDate  = birthDate;
     Cep        = cep;
     City       = city;
     Complement = complement;
     Cpf        = cpf;
     District   = district;
     Email      = email;
     Name       = name;
     Number     = number;
     State      = state;
     Street     = street;
     Cro        = cro;
     Expertise  = expertise;
     _schedules = new List <Scheduling>();
 }
コード例 #6
0
 protected Scheduling(EExpertise typeExpertise)
 {
     TypeExpertise = typeExpertise;
 }