Ejemplo n.º 1
0
 public AdImageDAL(
     DapperFriendly dapper,
     AdImageDTOParser adImageDTOParser)
 {
     this.dapper           = dapper;
     this.adImageDTOParser = adImageDTOParser;
 }
Ejemplo n.º 2
0
 public SearchAdDAL(DapperFriendly dapper, IConfiguration configuration)
 {
     this.dapper        = dapper;
     this.configuration = configuration;
 }
Ejemplo n.º 3
0
 public RedefinePasswordDAL(DapperFriendly dapper, IConfiguration configuration)
 {
     this.dapper        = dapper;
     this.configuration = configuration;
 }
Ejemplo n.º 4
0
 public AdStatusDAL(DapperFriendly dapper, IConfiguration configuration)
 {
     this.dapper        = dapper;
     this.configuration = configuration;
 }
Ejemplo n.º 5
0
 public OwnerDAL(DapperFriendly dapper, IConfiguration configuration)
 {
     this.dapper        = dapper;
     this.configuration = configuration;
 }
Ejemplo n.º 6
0
 public AddressDAL(IConfiguration configuration, DapperFriendly dapper, AddressRegisterDTOParser addressRegisterDTOParser)
 {
     this.dapper = dapper;
     this.addressRegisterDTOParser = addressRegisterDTOParser;
 }