Base solution for your next web application

Activities of "skinnerjames"

Question

Has anyone extended the metronic calendar to include features such as client self-scheduling or public facing calendar with open slots, recurring apppointments, blocking off personal time, etc? Are there any suggestions for a robust calendar api that will integrate easily with ASPNZ? Thanks

Question

Can can anybody tell me how extensively developed the customer invoicing function is? is there any documentation detailing the current functionality?

I realize this is a broad statement, but just looking for insight from others who may have experienced the same issues. When our application is accessed from an iOS device, For example, trying to set a calendar appointment and save it does not work. The button has no function.

Any suggestions what to look at?

BTW, no issues from PC, or Android.

Has anyone here worked on integrating EDI HIPAA transactions into aspnetzero? We are looking for an open source, or reasonably priced parser that will integrate with the latest version of aspnetzero/core2/angular in order to parse 835 files to SQL data tables.

Thanks in advance.

Question

Error description: "After deploying to Azure Web App application is returning 500 error without additional information after entering user login information. It seems, that something is related to AbpController functioning. Issue appears for requiests with Authorization header sent, the same request without it is fine. Issue does not appear when it is run on local instance"

Question

How to access hangfire dashboard when hangfire authorization is enabled through dashboard. Code sample in Startup.cs for Host project, when authorization is enabled app.UseHangfireDashboard("/hangfire", new DashboardOptions { Authorization = new[] { new AbpHangfireAuthorizationFilter(AppPermissions.Pages_Administration_HangfireDashboard) } });

Question

I am getting this error message and cannot figure out what my problem is.

TypeError: profileService.GetCurrentUserDemographicForEdit is not a function at init (VM1342 userDemographicsModal.js:34) at new <anonymous> (VM1342 userDemographicsModal.js:41) at e (angular.js:4523) at Object.instantiate (angular.js:4531) at angular.js:9197 at ui-bootstrap-tpls.min.js:9 at angular.js:14792 at r.$eval (angular.js:16052) at r.$digest (angular.js:15870) at r.$apply (angular.js:16160)

Here are snippets of my code. userDemographicsModal.js

function init() { profileService.GetCurrentUserDemographicForEdit({ id: appSession.user.id }).success(function (result) { vm.user = result; }); }

IProfileAppService.cs

namespace AHPClaims.AHPClaims.Authorization.Users.Profile { public interface IProfileAppService : IApplicationService { Task<CurrentUserProfileEditDto> GetCurrentUserProfileForEdit();

    Task UpdateCurrentUserProfile(CurrentUserProfileEditDto input);
    
    Task ChangePassword(ChangePasswordInput input);

    Task&lt;UserDemographicDto&gt; GetCurrentUserDemographicForEdit();

    Task UpdateCurrentUserDemographic(UserDemographicDto input);
}

}

ProfileAppService.cs

public async Task<UserDemographicDto> GetCurrentUserDemographicForEdit() { var user = await GetCurrentUserAsync(); return user.MapTo<UserDemographicDto>(); }

UserDemographicDto.cs

namespace AHPClaims.AHPClaims.Authorization.Users.Profile.Dto { [AutoMap(typeof(User))] public class UserDemographicDto { public string UserStreetAddress { get; set; }

    public string City { get; set; }

    public string State { get; set; }

    public string Zip { get; set; }

    public string Phone { get; set; }

    public string UserNPI { get; set; }
}

}

Any help is appreciated. Thanks

Does anyone have a recommendation for an appointment scheduler plugin that works well with the SPA version of ASPNet Zero? If your application has a scheduler, are you building this from scratch?

Question

I am trying to add a "patient" registration form by following the steps in the Acme.PhoneBook tutorial and am getting stuck on several points. The first point is using the Seed Method to import sample data into the DB. Here is my InitialPatientCreator.cs code.

using System.Collections.Generic; using System.Linq; using AHPClaims.AHPClaims.EntityFramework; using AHPClaims.AHPClaims.Patients;

namespace AHPClaims.AHPClaims.Migrations.Seed { public class InitialPatientCreator { private readonly AHPClaimsDbContext _context;

    public InitialPatientCreator(AHPClaimsDbContext context)
    {
        _context = context;
    }

    public void Create()
    {
        var douglas = _context.Patients.FirstOrDefault(p => p.EmailAddress == "[email protected]");
        if (douglas == null)
        {
            _context.Patients.Add(
                new Patient
                {
                    Name = "Douglas",
                    Surname = "Adams",
                    EmailAddress = "[email protected]"
                });
        }

        var asimov = _context.Patients.FirstOrDefault(p => p.EmailAddress == "[email protected]");
        if (asimov == null)
        {
            _context.Patients.Add(
                new Patient
                {
                    Name = "Isaac",
                    Surname = "Asimov",
                    EmailAddress = "[email protected]"
                });
        }
        _context.SaveChanges();
    }
}

}

Up to this point everything has worked as it should. When I run Update-Database in package manager nothing imports into DB. Does something in this file appear incorrect? Thanks in advance.

I am looking for someone who can help with some programming with the ASP net zero framework. Basic forms reading and writing to tables, etc. If you have any interest please email me at <a href="mailto:[email protected]">[email protected]</a> thanks.

Showing 1 to 10 of 12 entries