Ejemplo n.º 1
0
 public bool UpdateConsultationReply(ConsultationReply reply)
 {
     return(dal.UpdateConsultationReply(reply));
 }
Ejemplo n.º 2
0
 public bool AddConsultationReply(ConsultationReply reply)
 {
     return(dal.AddConsultationReply(reply));
 }
 public async Task <ConsultationReply> DeleteConsultationReply(ConsultationReply ConsultationReplyInfo)
 {
     return(await _repository.UpdateAsync(ConsultationReplyInfo));
 }
 public async Task InsertConsultationReply(ConsultationReply ConsultationReplyInfo)
 {
     await _repository.InsertAndGetIdAsync(ConsultationReplyInfo);
 }
        public async Task <ConsultationReply> CreateConsultationReply(ConsultationReply ConsultationReplyInfo)
        {
            ConsultationReplyInfo.Id = await _repository.InsertAndGetIdAsync(ConsultationReplyInfo);

            return(ConsultationReplyInfo);
        }
Ejemplo n.º 6
0
 public bool UpdateConsultationReply(ConsultationReply reply)
 {
     throw new NotImplementedException();
 }