using AutoMapper; using IRaCIS.Application.Interfaces; using IRaCIS.Application.ViewModels; using IRaCIS.Application.ViewModels.Pay; using IRaCIS.Core.Domain; using IRaCIS.Domain; using IRaCIS.Domain.Models; namespace IRaCIS.Application.AutoMapper { public class DomainToViewModelMappingProfile : Profile { public DomainToViewModelMappingProfile() { #region Reviewer CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); #endregion #region Management CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); #endregion #region institution CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); #endregion #region WrokLoad CreateMap(); #endregion CreateMap(); CreateMap(); #region finacial CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); #endregion #region image CreateMap(); #endregion } } }