Exemplo n.º 1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="examinee"></param>
        /// <returns></returns>
        public virtual async Task CreateAsync(Examinee examinee)
        {
            if (examinee == null)
            {
                throw new ArgumentNullException(nameof(examinee));
            }

            await this.Store.CreateAsync(examinee);
        }
Exemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="examinee"></param>
 /// <returns></returns>
 public virtual async Task DeleteAsync(Examinee examinee)
 {
     await this.Store.DeleteAsync(examinee);
 }
Exemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="examinee"></param>
 /// <returns></returns>
 public virtual async Task UpdateAsync(Examinee examinee)
 {
     await this.Store.UpdateAsync(examinee);
 }