public HomeController(IBlog blogImplementation, IPlace placeImplementation, IContactUs contactUsImplementation, UserManager <IdentityUser> userManager) { _blogImplementation = blogImplementation; _placeImplementation = placeImplementation; _contactUsImplementation = contactUsImplementation; _userManager = userManager; }
public HomeController() { repo = new ContactUsRepo(); repoAns = new AnswerRepo(); slideshowRepo = new SlideshowRepo(); newsRepo = new NewsRepo(); }
public ContactUsguestController() { try { iContactUs = new ContactUsRepository(); } catch (Exception ex) { Utility.WriteLog("ContactUsguestController (guest)", null, "Error while initialize repository.", ex.ToString()); } }
public ContactUsViewModel(IContactUs content) { this.id = content.id; this.alias = content.alias; this.content = content.content; this.created_by = content.created_by; this.date_created = content.date_created; this.date_updated = content.date_updated; this.meta_description = content.meta_description; this.meta_tags = content.meta_tags; this.title = content.title; this.type = content.type; this.type_id = content.type_id; this.latitude = content.latitude; this.longitude = content.longitude; this.location = content.location; this.enabled = content.enabled; }
/// <summary>Static getter for Customer Support</summary> public static IHtmlString GetCustomerSupport(IContactUs that) { return(that.GetPropertyValue <IHtmlString>("customerSupport")); }
/// <summary>Static getter for Technical Support</summary> public static IHtmlString GetTechnicalSupport(IContactUs that) { return(that.GetPropertyValue <IHtmlString>("technicalSupport")); }
/// <summary>Static getter for Heading</summary> public static string GetSocialMediaHeading(IContactUs that) { return(that.GetPropertyValue <string>("socialMediaHeading")); }
/// <summary>Static getter for Investor Relation</summary> public static IHtmlString GetInvestorRelation(IContactUs that) { return(that.GetPropertyValue <IHtmlString>("investorRelation")); }
/// <summary>Static getter for Facebook link</summary> public static string GetFacebookLink(IContactUs that) { return(that.GetPropertyValue <string>("facebookLink")); }
/// <summary>Static getter for Customer Support Title</summary> public static string GetCustomerSupportTitle(IContactUs that) { return(that.GetPropertyValue <string>("customerSupportTitle")); }
public ContactController(IContactUs _contact, ICommon _common) { contact = _contact; common = _common; }
public ContactUsController() { repo = new ContactUsRepo(); }
public ContactusController(AppIdentityDbContext context, IContactUs contactManager) { _context = context; _contactManager = contactManager; }
public ContactUsController(IContactUs Service) { _svr = Service; }